This guide has been written using AI. This warning will be removed once its contents have been checked over by a human.
Create New Record with Data Action
The Create New Record with Data action in LiveCode Create allows you to add a new record to a specific Collection while providing predefined values for its fields. This is a powerful way to dynamically populate your datastore with customized data.
Context
Collections are the foundation of your app's data in LiveCode Create. With the Create New Record with Data action, you can create a record and set specific field values upfront, saving you time and reducing manual updates later.
This action is particularly useful when:
- Pre-filling form data programmatically.
- Creating new entries in a Collection with defined field values.
- Automatically adding new records in workflows, such as after a user submits a form or triggers an event.
Properties
When configuring the Create New Record with Data action, you will set the following properties:
Property | Description |
---|---|
Collection Name | The target Collection where the new record will be created. |
Go to Created Record | Whether to automatically navigate to the newly created record (Boolean). |
Collection Fields | The specific fields in the Collection where you want to set values. |
- Collection Name: Selected from a dropdown of all available Collections.
- Go to Created Record: A simple checkbox option.
- Collection Fields: Dynamically presented based on the fields defined in the selected Collection.
Example
Imagine you have a Collection called "Tasks" with the following fields:
taskName
(Text)dueDate
(Date)completed
(Boolean)
You can configure the action to create a new record in the "Tasks" Collection, providing values for these fields.
Steps to Configure
- Select the Action: Drag the Create New Record with Data action into the Workflow Editor.
- Set Properties:
- Collection Name:
Tasks
- Go to Created Record: Checked
- Fields:
taskName
: "New Task"dueDate
: "2024-06-01"completed
:false
- Collection Name:
Code Generated
When you configure the action, the following LiveCode Script is automatically generated:
datastoreCreateNewRecordInCollectionWithData "Tasks",
{ "taskName": "New Task", "dueDate": "2024-06-01", "completed": false },
true
How it Works
- Collection Name: Specifies where the new record will be created.
- Collection Fields: Defines the data to populate the new record.
- Go to Created Record: If enabled, the app will navigate directly to the new record after it's created.
Visual Example
Here’s what it might look like when configuring the action:
Summary
The Create New Record with Data action is a versatile way to populate your app's datastore with custom records quickly. By providing predefined values for specific fields, you can streamline data creation and improve app efficiency.
For further learning: